home *** CD-ROM | disk | FTP | other *** search
/ L' Effet Pommier 3 / L'Effet Pommier - Volume 03.iso / Graphismes / 3D / POV-Ray 3.0B5a PPC / POV-Ray 3.0B5a / POVSCN.Scenes / POV3DEMO / OTHER / MESSAGE.POV < prev    next >
Text File  |  1995-12-12  |  828b  |  52 lines

  1. // Persistence Of Vision raytracer version 3.0 sample file.
  2.  
  3.  
  4. #version 3.0
  5. global_settings { assumed_gamma 2.2 }
  6.  
  7. #include "colors.inc"
  8.  
  9. camera {
  10.    location  <0, 20, -100>
  11.    direction <0,  0,    1>
  12.    up        <0,  1,    0>
  13.    right   <4/3,  0,    0>
  14. }
  15.  
  16. #warning "I told you so!"
  17.  
  18. background { colour SkyBlue }
  19.  
  20. #render "\nHere we go a rendering...\n"
  21.  
  22. plane { y, -10
  23.    pigment {
  24.       checker colour Yellow colour Green
  25.       scale 20
  26.    }
  27.    finish {
  28.       ambient 0.2
  29.       diffuse 0.8
  30.    }
  31. }
  32.  
  33. #debug concat("The clock = ",str(clock,5,3))
  34.  
  35. sphere { <0, 25, 0>, 40
  36.    pigment {Red}
  37.    finish {
  38.       ambient 0.2
  39.       diffuse 0.6
  40.       phong 1.0
  41.       phong_size 20
  42.    }
  43. }
  44.  
  45. #statistics "Lots of people trace rays\n"
  46.  
  47. light_source {<100, 120, 40> colour White}
  48.  
  49. #if (clock > 10)
  50. #error "You shouldn't have done that!"
  51. #end
  52.